*{
    margin: 0%;
    padding: 0%;
}
html{
    font-size: 62.5%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    min-width: 260px;
    min-height: 530px;

}

body{
    background: linear-gradient(90deg, rgb(175, 11, 66), rgb(201, 94, 121), rgb(175, 11, 66));
    
    box-sizing: border-box;
}

/*HEADER*/

header{
    background: linear-gradient(90deg, pink, white, pink);
    box-shadow: 0px 0.5rem 1rem rgb(92, 18, 36);
    box-sizing: border-box;
    
    
    display: flex;
    
    justify-content: flex-start;
    align-items: flex-end;
    height: 12vh;
    width: 100%;
}
h1{
    font-family: 'Kaushan Script', cursive;
    font-size: 7rem ;
    color: aliceblue;
    text-shadow: 3px 2px 2px rgb(51, 10, 44);
}

h2{
    padding-left: 0.5rem;
    text-align: center;
    font-family: 'Caveat', cursive;/*
    font-family: 'Tangerine', cursive;*/
    font-size: 3rem;
    color: rgb(79, 10, 88);
    text-shadow: 1px 2px 2px rgb(255, 255, 255);
}
/*HEADER*/


main{
    box-sizing: content-box;
    width: 100%;
    height: 80vh;
    padding: 0.4rem 0px;
    display: flex;
    justify-content: space-between;
    
    align-content: stretch;
    align-items: stretch;
    flex-wrap:nowrap;
                    
}

/*MENU*/

.nav1{
    width: 30vw;
    margin:0;
    height: 80vh;
    
}
.nav1 ul{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.nav1 li{ 
    z-index: 3;
    list-style-type: none;
    font-family: 'Kaushan Script', cursive;
    text-shadow: 2px 2px 4px rgb(45, 5, 50);
    
    
}


.nav1 ul a{
    
    padding: 2rem 2rem;
    text-decoration: none;
    color: aliceblue;
    font-size: 2.7rem;
    display: inline-block;
    
}

.nav1 ul a:hover{
    transition: ease-in-out;
    min-width: 25vw;
    transition: 0.5s;
    padding-left: 1rem;
    font-size: 3rem;
    background-color: rgb(248, 174, 186, 0.3);
    color: rgb(255, 255, 255);
    box-shadow: 1rem 1rem 1rem rgb(90, 5, 37);
    
    
}

/*MENU*/

/*IMAGENVALE*/

.valeimg{
    width: 30vw;
    justify-self: center;
    align-self: center;
    
}
.vale{
    z-index: 1;
    max-height: 73vh;
    min-height: 50vh;
    margin: 1rem 5rem 1rem 0rem;
    filter: drop-shadow(4px 0px 4px rgb(41, 4, 20));
    transition: all 0.3s;
}

.vale:hover{
    transition: all;
    transition: 1s;
    max-height: 75vh;
    filter: drop-shadow(0 0 40px rgb(248, 240, 197) );
}

/*IMAGENVALE*/


/* FORMULARIO*/

.formulario{
    max-inline-size: 76vh;
    align-self: center;
    margin: 2rem;
}

form{
    
    padding: 2rem 4rem;
    font-size: 2rem;
    word-spacing: 0.5rem;
    border-radius: 10px;
    border: 1px solid whitesmoke;
}

.input{
    border: 0.4rem groove rgb(54, 3, 43);  
    background-color: rgb(250, 206, 230);
    border-radius: 4%;
    height: 2.4rem;
    margin: 1rem;
    padding: 0.5rem;
    box-shadow: inset 0px 0px 0.5rem 0.13rem rgb(166, 26, 98);
}
.text-area{
    border: 0.4rem groove rgb(54, 3, 43); 
    background-color: rgb(250, 206, 230);
    border-radius: 4%;
    margin: 1rem;
    padding: 0.5rem;
    box-shadow: inset 0px 0px 0.5rem 0.13rem rgb(166, 26, 98);
}
.boton{
    border: 0.4rem groove rgb(54, 3, 43); 
    background-color: rgb(250, 206, 230);
    border-radius: 10%;
    font-family: 'Caveat', cursive;
    margin: 1rem;
    font-size: 2rem;
    padding: 0.5rem;
    box-shadow: inset 0px 0px 0.5rem 0.13rem rgb(166, 26, 98);
}
/* FORMULARIO*/


/*FOOTER*/

footer{
    
    position: fixed;
    bottom: 0px;
    width: 100%;
    max-height: 6vh;
    background: linear-gradient(90deg, pink, white, pink);
    box-shadow: 0px -0.5rem 1rem rgb(44, 9, 17);
    
}

footer ul{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    
}

h3{
    color: whitesmoke;
    text-shadow: 0rem 0.1rem 0.4rem rgb(0, 0, 0);
    font-size: 2.1rem;
    margin-top: 1.1rem;
    
}

footer ul a{
    padding: 1rem;
    color: rgb(79, 10, 88);
}

footer li{
    list-style-type: none;
}

footer a:hover {
    color: rgb(219, 148, 160);
  }
  
#chico{
    font-size: 1.4rem;
    align-self: center;
    padding: 1rem;
    margin: 0.5rem;
    text-align: center;
}  

#grande li:after {
    content: attr(data-link);
    opacity: 0;
    transition: 0.5s opacity;
    color: rgb(219, 148, 160);
    font-size: large;
    font-weight: bold;
    margin-left: 0.5rem;
}
#grande li:hover:after {
    opacity: 1;

}

/*MEDIA QUERIES*/



@media screen and (max-width:430px) and (orientation:portrait) {
    html{
        font-size: 30%;
       }

       .valeimg{
        visibility: collapse;
        width: 0vw;
    }
    .vale{
     visibility: collapse;
     width: 0%;
    }
    .vale:hover{
     visibility: collapse;
     width: 0%;
    }
    h1{
    font-size: 5rem;
    padding: 1rem;
    }

    .nav1{
        width: 25vw;
    }
   
    .presentacion{
        margin: 0.2rem;
    }
    h4{
        padding: 0rem;
    }

    #grande{
        visibility: hidden;
        height: 0vh;
        width: 0vw;
    }
    #grande li:after {
        content: none;
        font-size: 0;
    }
    #f-h3{
        font-size: 0;
        visibility: hidden;
        height: 0vh;
        width: 0vw;
    }

    .formulario{
        width: 55vw;
        box-sizing: border-box;
    }
    .input{
        padding: 1rem;
        height: 1.5rem;
        font-size: 1.5rem;
    }
    form{
        padding: 1rem;
    }
    .text-area{
        width: 90%;
        font-size: 1.5rem;
    }
   
  
}

@media screen and (max-width:430px) and (orientation:landscape) {
    html{
        font-size: 20%;
       }

       .valeimg{
        visibility: collapse;
        width: 0vw;
    }
    .vale{
     visibility: collapse;
    }
    .vale:hover{
     visibility: collapse;
    }
    h1{
    font-size: 5rem;
    padding: 1rem;
}

    .nav1{
        width: 25vw;
    }
   
    .presentacion{
        margin: 0.2rem;
    }
    h4{
        padding: 0rem;
    }

    #grande{
        visibility: hidden;
        height: 0vh;
        width: 0vw;
    }
    #grande li:after {
        content: none;
        font-size: 0;
    }
    #f-h3{
        font-size: 0;
        visibility: hidden;
        height: 0vh;
        width: 0vw;
    }

    .formulario{
        width: 55vw;
        box-sizing: border-box;
    }
    .input{
        padding: 1rem;
        height: 1rem;
        font-size: 1rem;
    }
    form{
        padding: 1rem;
    }
    .text-area{
        width: 90%;
        font-size: 1rem;
    }
  
}




@media screen and (max-width:639px) and (min-width:430px) and (orientation: landscape){
    html{
    font-size: 35%;
   }
   .valeimg{
       visibility: collapse;
       width: 0vw;
   }
   .vale{
    visibility: hidden;
    width: 0%;
   }
   .vale:hover{
    visibility: hidden;
    width: 0%;
   }
   #grande{
       visibility: hidden;
       height: 0vh;
       width: 0vw;
   }
   #grande li:after {
       content: none;
       font-size: 0;
   }
   #f-h3{
       font-size: 0;
       visibility: hidden;
       height: 0vh;
       width: 0vw;
   }
   .formulario{
    width: 55vw;
    box-sizing: border-box;
}
.input{
    padding: 1rem;
    height: 1rem;
    font-size: 1rem;
}
form{
    padding: 1rem;
}
.text-area{
    width: 90%;
    font-size: 1rem;
}
}
   

   @media screen and (max-width:639px) and (min-width:430px) and (orientation: portrait){
    html{
    font-size: 40%;
   }
   .valeimg{
       visibility: collapse;
       width: 0vw;
   }
   .vale{
    visibility: hidden;
    width: 0%;
   }
   .vale:hover{
    visibility: hidden;
    width: 0%;
   }
   #grande{
       visibility: hidden;
       height: 0vh;
       width: 0vw;
   }
   #grande li:after {
       content: none;
       font-size: 0;
   }
   #f-h3{
       font-size: 0;
       visibility: hidden;
       height: 0vh;
       width: 0vw;
   }
   .formulario{
       height: 70%;
   }
   form{
       
    padding: 1rem;
    box-sizing: border-box;
}
}


@media screen and (max-width:1023px) and (min-width:640px)  and (orientation:portrait) {
    html{

    font-size: 44%;
  }
  .valeimg{
    visibility: collapse;
    width: 0vw;
}
.vale{
 visibility: hidden;
 width: 0%;
}
.vale:hover{
 visibility: hidden;
 width: 0%;
}
  #grande{
      visibility: hidden;
      height: 0vh;
  }
}
@media screen and (max-width:1023px) and (min-width:640px)  and (orientation:landscape) {
    html{

    font-size: 30%;
  }
  .vale{
    max-height: 52vh;
}
.vale:hover{
    max-height: 55vh;
}
  #grande{
      visibility: hidden;
      height: 0vh;
  }
  form{
    padding: 1rem;
}

.formulario{
    width: 55vw;
    box-sizing: border-box;
}
.input{
    padding: 1rem;
    height: 1rem;
    font-size: 1.5rem;
}
form{
    padding: 1rem;
}
.text-area{
    width: 90%;
    font-size: 1.5rem;
}
}


@media screen and (max-width:1439px) and (min-width:1024px) {
    html{
        font-size: 48%;
    }
    #chico{
        visibility: hidden;
        height: 0vh;
        width: 0vw;
    }
}

@media screen and (max-width:1440px) and (min-width:1820px) {
    html{
        font-size: 62.5%;
    }
    #chico{
        visibility: hidden;
        height: 0vh;
        width: 0vw;
    }
}

@media screen and (min-width:1820px) {
    html{
        font-size: 80%;
    }
    #chico{
        visibility: hidden;
        height: 0vh;
        width: 0vw;
    }
}


